:root {
  --primary-color: #ed6225;
  --secondary-color: #4a6741;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --white: #fff;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/api/placeholder/1200/400");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 100px 0;
  margin-bottom: 40px;
  text-align: center;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.section-title h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: left;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.step-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  flex: 1 1 200px;
  max-width: 300px;
  transition: var(--transition);
  position: relative;
  background-color: #edede9;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.step-number {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--primary-color);
  color: var(--white);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.9rem;
}

.step-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  margin-bottom: 20px;
}

.step-icon svg {
  width: 60px;
  height: 60px;
  fill: var(--primary-color);
  transition: var(--transition);
}

.step-card:hover .step-icon svg {
  transform: scale(1.1);
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
  text-align: center;
}

.step-description {
  font-size: 0.95rem;
  color: #555;
  text-align: center;
}

/* Our Concept Section */
.concept-section {
  background: #f8f9fa;
  padding: 4rem 0;
}

.concept-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.concept-title {
  font-size: 2.5rem;
  color: #2d5016;
  margin-bottom: 2rem;
  font-style: italic;
}

.concept-text {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.concept-features {
  background: #fad5ba;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.concept-features h3 {
  color: #2d5016;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.feature-item {
  padding: 1rem;
  border-left: 4px solid #2d5016;
  background: #f8f9fa;
  border-radius: 5px;
}

.feature-item strong {
  color: #2d5016;
}

/* Request Button Section */
.elementor-section {
  padding: 3rem 0;
  text-align: center;
}

.elementor-button {
  background: #2d5016;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
}

.elementor-button:hover {
  background: #1a300a;
  transform: translateY(-2px);
}

/* Promise Section */
.section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin: 4rem 0;
}

.title {
  font-size: 2.5rem;
  color: #2d5016;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.text {
  color: #333;
  line-height: 1.8;
}

/* Accordion */
.accordion-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-title {
  background: #f8f9fa;
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: #2d5016;
}

.accordion-title:hover {
  background: #e9ecef;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content.active {
  max-height: 200px;
}

.accordion-content-inner {
  padding: 1.5rem;
  color: #333;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .text-4xl {
    font-size: 1.8rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

.cta-section {
  text-align: center;
  margin: 40px 0 60px;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #d55420;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary-color);
  margin-top: 40px;
}

.btn-secondary:hover {
  background-color: #3a5333;
}

.footer-cta {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("/api/placeholder/1200/400");
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}

/* Responsive styles */
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    max-width: 100%;
    width: 100%;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .section-title h3 {
    font-size: 1.5rem;
  }
}

/* Interested Button */
.interest-button {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border: none;
  border-radius: 50px;
  padding: 8px 16px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  cursor: pointer;
  animation: fastZoomBlink 1.2s infinite;
}

.interest-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
  animation-play-state: paused;
}

.interest-button:active {
  transform: translateY(0);
}

.interest-button .icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.interest-button:hover .icon {
  transform: scale(1.1);
}

.interest-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.interest-button:hover::before {
  left: 100%;
}

@keyframes fastZoomBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

.button-container {
  position: relative;
  display: inline-block;
}

/* Alternative styles - uncomment to try different effects */
/*
        .interest-button {
            animation: colorBlink 1.5s infinite;
        }

        @keyframes colorBlink {
            0%, 100% { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
            50% { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
        }
        */
